home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / ispell31.lha / ispell-3.1.18src / Amiga / interfaces / GUISpell-1.1 / libraries.h < prev    next >
C/C++ Source or Header  |  1992-02-12  |  591b  |  33 lines

  1. #ifndef INCLUDE_LIBS_STRUCT
  2. extern
  3. #endif
  4. struct
  5. {
  6.   char *name;
  7.   ULONG version;
  8.   APTR base;
  9. } libs[]
  10. #ifdef INCLUDE_LIBS_STRUCT
  11. =
  12. {
  13.   {"exec.library", 37, 0},
  14.   {"dos.library", 37, 0},
  15.   {"gadtools.library", 37, 0},
  16.   {"intuition.library", 37, 0},
  17.   {"iffparse.library", 37, 0},
  18.   {"rexxsyslib.library", 36, 0},
  19.   {0, 0, 0},
  20. }
  21. #endif
  22. ;
  23.  
  24. #define ExecBase libs[0].base
  25. #define DOSBase libs[1].base
  26. #define GadToolsBase libs[2].base
  27. #define IntuitionBase libs[3].base
  28. #define IFFParseBase libs[4].base
  29. #define RexxSysBase libs[5].base
  30.  
  31. void OpenLibraries (void);
  32. void CloseLibraries (void);
  33.